home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / go32 / fs / fsfuncts.h < prev    next >
C/C++ Source or Header  |  1995-03-21  |  688b  |  27 lines

  1. #ifndef FS_FUNCT_S_H
  2. #define FS_FUNCT_S_H 1
  3.  
  4. #define ParseError_ok 1
  5. #define ParseError_addr 2
  6. #define ParseError_divzero 3
  7. #define ParseError_paren 4    
  8. #define ParseError_syntax 5
  9. #define ParseError_undef 6
  10.  
  11. long parse_expression (int size, char *expr, int *okp);
  12. int  valid_addr (word32 addr, int len);
  13. void redraw_registers (char *buf);
  14. void redraw_flags (char *buf);
  15. void redraw_breakpoints (char *buf);
  16. void redraw_data (char *buf);
  17. void redraw_code (char *buf);
  18. void redraw_npx (char *buf);
  19. void redraw_stack (char *buf);
  20. void redraw_info (char *buf);
  21. void redraw_whereis (char *buf);
  22. void redraw_module (char *buf);
  23. void redraw_help (char *buf);
  24. void redraw (int first);
  25.  
  26. #endif
  27.